home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / eddilib / eddilib.h < prev    next >
C/C++ Source or Header  |  1994-11-04  |  583b  |  24 lines

  1. /*
  2.     NVDI/EdDI Offscreen bitmap support library.
  3.     Ported from Pure C to Lattice C 5.52 by Craig Graham.
  4.     [3/11/94]
  5. */
  6.  
  7. #ifndef __EDDILIB
  8. #define __EDDILIB
  9.  
  10. #include <vdi.h>
  11.  
  12. void  v_opnbm( short *work_in, MFDB *bitmap, short *handle, short *work_out );
  13. void  v_clsbm( short handle );
  14. short open_bitmap( short x, short y, MFDB *bitmap, short *work_out );
  15.  
  16. /*
  17.     Inline a simple function for calling the vdi direct rather than mess about
  18.     trying to work out the HiSoft binding.
  19. */
  20. void cg_vdi(unsigned long);
  21. #pragma inline cg_vdi(a0)    {"2208303C00734E42";}
  22.  
  23. #endif
  24.